home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / cppwin10.zip / CWIND1.HPP < prev    next >
C/C++ Source or Header  |  1991-01-11  |  345b  |  22 lines

  1. /***
  2.     Test window class.
  3. ***/
  4.  
  5. #ifndef CWind1_INC
  6. #define CWind1_INC
  7.  
  8. #include "cwind.hpp"
  9.  
  10. class   CWind1 : public CWind   {
  11.     public:
  12.         CWind1(HANDLE ,HANDLE);
  13.         LONG DoCommand(WORD wMenuId, LONG lParam);
  14.         LONG DoSize(WORD wCmd, LPPOINT lpPoint);
  15.         ~CWind1();
  16.  
  17.         CWind *pButton;
  18.         CWind *pList;
  19.         int Ctr;
  20. };
  21. #endif
  22.